:root {
  --box-padding: 15px;
  --content-gap: 150px;

  --header-font-size: 48px;
  --title-font-size: 36px;
  --subtitle-font-size: 24px;
  --text-font-size: 15px;

  --header-height: 80px;
  --header-padding: 40px;
  --header-download-button-height: 36px;
  --header-download-button-width: 130px;

  --download-button-height: 45px;
  --download-button-width: 200px;

  --product-header-image-height: 60px;
  --product-projects-image-width: 1000px;
  --product-small-details-width: 320px;
  --product-small-details-image-top-gap: -60px;

  --security-description-wrapper-width: 500px;

  --each-project-logo-height: 45px;

  --steps-project-details-image-width: 500px;
  --steps-login-image-width: 350px;

  --node-operations-image-width: 900px;

  --graphs-one-image-width: 400px;
  --graphs-two-image-width: 300px;

  --update-navbar-image-width: 240px;
  --update-installation-image-width: 700px;
  --update-text-width: 660px;

  --footer-input-height: 45px;
  --footer-input-width: 500px;
  --footer-input-gap: 20px;
  --footer-input-button-width: 120px;
}

.all-wrapper {
  height: 100vh;
  min-height: 100vh;
  width: 100vw;
  min-width: 100vw;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
}

.all-header {
  height: var(--header-height);
  min-height: var(--header-height);
  width: 100vw;
  min-width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  gap: var(--box-padding);
  align-items: center;
  z-index: 100;
  padding: 0 var(--header-padding);
  background-color: var(--background-color);
}

.all-header-logo-wrapper {
  cursor: pointer;
  text-decoration: none;
  margin-right: auto;
}
.all-header-logo, .all-header-logo-responsive {
  height: 24px;
}
.all-header-logo-responsive {
  display: none;
}

.all-header-socials-wrapper {
  display: flex;
  align-items: center;
  gap: var(--box-padding);
  width: fit-content;
  min-width: fit-content;
  padding: 0 var(--box-padding);
  height: var(--header-download-button-height);
  min-height: var(--header-download-button-height);
  border-radius: var(--header-download-button-height);
  background-color: var(--box-color);
}
.each-all-header-social {
  height: fit-content;
  min-height: fit-content;
  width: fit-content;
  min-width: fit-content;
  cursor: pointer;
  fill: var(--main-color);
}
.each-all-header-social:hover {
  fill: var(--text-color);
}
.each-all-header-social-icon {
  height: 18px;
  min-height: 18px;
  width: auto;
  min-width: auto;
}

.all-header-download-button {
  text-decoration: none;
  height: var(--header-download-button-height);
  min-height: var(--header-download-button-height);
  width: var(--header-download-button-width);
  min-width: var(--header-download-button-width);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--header-download-button-height);
  background-color: var(--button-background-color);
}
.all-header-download-button-text {
  font-weight: 400;
  font-size: var(--text-font-size);
  color: var(--button-text-color);
}

.all-header-language-button {
  cursor: pointer;
  text-decoration: none;
  height: var(--header-download-button-height);
  min-height: var(--header-download-button-height);
  width: fit-content;
  min-width: fit-content;
  display: flex;
  align-items: center;
  padding: 0 var(--box-padding);
  border-radius: var(--header-download-button-height);
  background-color: var(--box-color);
}
.all-header-language-button-text {
  font-weight: 600;
  font-size: var(--text-font-size);
  color: var(--main-color);
}
.all-header-language-button-image {
  height: 18px;
  width: auto;
}

.all-content {
  height: fit-content;
  min-height: fit-content;
  width: 100vw;
  min-width: 100vw;
  display: flex;
  flex-direction: column;
}

.title-wrapper {
  height: 40vh;
  min-height: 40vh;
  width: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
}
.title {
  font-weight: 400;
  font-size: 60px;
  line-height: 130%;
  color: var(--text-color);
}
.subtitle {
  margin-top: var(--box-padding);
  font-weight: 300;
  font-size: 16px;
  color: var(--text-color);
  max-width: calc(min(600px, 100vw - 2 * var(--content-horizontal-padding)));
  text-align: center;
  line-height: 150%;
}
.subtitle * {
  color: var(--text-color);
  display: inline;
}
.subtitle-highlight {
  color: var(--button-background-color);
  font-weight: 600;
}

.download-wrapper {
  display: flex;
  flex-direction: column;
  height: fit-content;
  min-height: fit-content;
  width: 100%;
  min-width: 100%;
  align-items: center;
  margin-bottom: calc(2 * var(--box-padding));
}

.download-button {
  text-decoration: none;
  height: var(--download-button-height);
  min-height: var(--download-button-height);
  width: var(--download-button-width);
  min-width: var(--download-button-width);
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-radius: var(--download-button-height);
  background-color: var(--button-background-color);
  margin-top: var(--box-padding);
}
.download-button-text {
  font-weight: 400;
  font-size: var(--text-font-size);
  color: var(--button-text-color);
}
.download-button-icon {
  fill: var(--button-text-color);
  height: 18px;
  width: auto;
}

.download-info-wrapper {
  display: flex;
  align-items: center;
  height: fit-content;
  min-height: fit-content;
  width: var(--download-button-width);
  min-width: var(--download-button-width);
  margin-top: 10px;
}
.download-text {
  color: rgba(68, 90, 114, 1);
  font-weight: 400;
  font-size: 14px;
  margin-right: auto;
}
.other-download-button {
  text-decoration: none;
  cursor: default;
  margin-left: 10px;
  opacity: 0.9;
  height: fit-content;
  min-height: fit-content;
}
.other-download-button:hover {
  opacity: 1;
}
.other-download-button-icon {
  height: 19px;
  width: auto;
  margin-left: 4px;
}

.product-images-wrapper {
  position: relative;
  width: 100%;
  min-width: 100%;
  height: fit-content;
  min-height: fit-content;
}
.product-header-image {
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  left: var(--content-horizontal-padding);
  top: var(--box-padding);
  height: var(--product-header-image-height);
  min-height: var(--product-header-image-height);
  width: auto;
  box-shadow: 0 0 5px rgba(2, 2, 6, 0.1);
  z-index: 2;
  background-color: var(--background-color);
}
.product-projects-image {
  position: absolute;
  left: 50vw;
  transform: translateX(-50%);
  top: calc(var(--box-padding) + var(--product-header-image-height) - 5px);
  width: calc(min(100vw - 2 * var(--content-horizontal-padding), var(--product-projects-image-width)));
  min-width: calc(min(100vw - 2 * var(--content-horizontal-padding), var(--product-projects-image-width)));
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.product-small-details-image {
  border-radius: 15px;
  overflow: hidden;
  position: absolute;
  right:calc(var(--header-padding) + var(--content-horizontal-padding));
  top: var(--product-small-details-image-top-gap);
  transform: translateY(-25%);
  width: var(--product-small-details-width);
  min-width: var(--product-small-details-width);
  height: auto;
  box-shadow: 0 0 5px rgba(2, 2, 6, 0.1);
  z-index: 2;
  background-color: var(--background-color);
}

.security-wrapper {
  margin-top: calc(min(100vw - 2 * var(--content-horizontal-padding), var(--product-projects-image-width)) / 2 + var(--content-gap));
  height: fit-content;
  min-height: fit-content;
  width: var(--security-description-wrapper-width);
  min-width: var(--security-description-wrapper-width);
  margin-left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
}
.security-title-wrapper {
  display: flex;
  flex-direction: column;
}
.security-title {
  font-weight: 600;
  font-size: var(--header-font-size);
  color: var(--text-color);
  margin-bottom: 10px;
}
.security-description {
  width: var(--security-description-wrapper-width);
  min-width: var(--security-description-wrapper-width);
  font-weight: 400;
  font-size: var(--text-font-size);
  line-height: 180%;
  color: var(--text-color);
  text-align: justify;
  text-align-last: center;
  margin-top: 5px;
}

.projects-wrapper {
  margin-top: var(--content-gap);
  display: flex;
  align-items: center;
  height: fit-content;
  min-height: fit-content;
  width: 100%;
  min-width: 100%;
}
.each-project-logo {
  height: var(--each-project-logo-height);
  min-height: var(--each-project-logo-height);
  margin: 0 var(--box-padding);
}

.steps-wrapper {
  margin-top: var(--content-gap);
  display: flex;
  align-items: flex-start;
  height: fit-content;
  min-height: fit-content;
  width: 100%;
  min-width: 100%;
  padding: 0 var(--content-horizontal-padding);
}

.steps-image-wrapper {
  position: relative;
  height: fit-content;
  min-height: fit-content;
  flex: 1;
  width: 50%;
  min-width: 50%;
}
.steps-project-details-image {
  height: auto;
  width: var(--steps-project-details-image-width);
  min-width: var(--steps-project-details-image-width);
  border-radius: 15px;
  overflow: hidden;
}
.steps-login-image {
  position: absolute;
  height: auto;
  width: var(--steps-login-image-width);
  min-width: var(--steps-login-image-width);
  box-shadow: 0 0 5px rgba(2, 2, 6, 0.1);
  z-index: 2;
  right: 0;
  bottom: 0;
  transform: translateY(25%);
  border-radius: 15px;
  overflow: hidden;
}

.steps-text-wrapper {
  flex: 1;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc(2 * var(--box-padding));
}

.steps-title {
  font-weight: 600;
  font-size: var(--title-font-size);
  color: var(--text-color);
  text-align: right;
  margin-left: auto;
  margin-bottom: 25px;
}
.steps-description {
  font-weight: 400;
  font-size: var(--text-font-size);
  line-height: 180%;
  color: var(--text-color);
  text-align: right;
  margin-left: auto;
  margin-bottom: 50px;
}

.node-operations-image {
  opacity: 0.9;
  height: auto;
  width: calc(min(100vw - 2 * var(--content-horizontal-padding), var(--node-operations-image-width)));
  min-width: calc(min(100vw - 2 * var(--content-horizontal-padding), var(--node-operations-image-width)));
  margin-top: calc(90px + var(--content-gap));
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  overflow: hidden;
}

.graphs-wrapper {
  margin-top: var(--content-gap);
  display: flex;
  align-items: flex-start;
  height: fit-content;
  min-height: fit-content;
  width: 100%;
  min-width: 100%;
  padding: 0 var(--content-horizontal-padding);
}

.graphs-text-wrapper {
  height: fit-content;
  min-height: fit-content;
  width: 50%;
  min-width: 50%;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: var(--box-padding);
}
.graphs-title {
  font-weight: 600;
  font-size: var(--title-font-size);
  color: var(--text-color);
  margin-bottom: 25px;
}
.graphs-description {
  font-weight: 400;
  font-size: var(--text-font-size);
  line-height: 180%;
  color: var(--text-color);
  margin-bottom: 25px;
}
.graphs-subtitle {
  font-weight: 500;
  font-size: var(--subtitle-font-size);
  color: var(--text-color);
}
.graphs-subtitle-highlight {
  font-weight: 600;
  color: var(--button-background-color);
}

.graphs-image-wrapper {
  position: relative;
  height: fit-content;
  min-height: fit-content;
  flex: 1;
  width: 50%;
  min-width: 50%;
  display: flex;
  justify-content: flex-end;
}
.graphs-one-image {
  opacity: 0.9;
  height: auto;
  width: var(--graphs-one-image-width);
  min-width: var(--graphs-one-image-width);
  border-radius: 15px;
  overflow: hidden;
  z-index: 2;
}
.graphs-two-image {
  opacity: 0.9;
  position: absolute;
  height: auto;
  width: var(--graphs-two-image-width);
  min-width: var(--graphs-two-image-width);
  z-index: 3;
  left: 0;
  bottom: 0;
  transform: translate(-5%, 50%);
  border-radius: 15px;
  overflow: hidden;
}

.update-wrapper {
  margin-top: calc(2 * var(--content-gap));
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
  min-height: fit-content;
  width: 100%;
  min-width: 100%;
  padding: 0 calc(var(--content-gap) / 2);
}


.update-installation-image {
  height: auto;
  min-height: auto;
  width: var(--update-installation-image-width);
  min-width: var(--update-installation-image-width);
  box-shadow: 0 0 5px rgba(2, 2, 6, 0.1);
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: var(--box-padding);
}

.update-text-wrapper {
  height: auto;
  min-height: auto;
  width: calc(100vw - 2 * var(--content-horizontal-padding) - var(--update-navbar-image-width) - 20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-left: var(--box-padding);
}
.update-title {
  font-weight: 600;
  font-size: var(--title-font-size);
  color: var(--text-color);
  width: calc(min(100%, var(--update-text-width)));
  min-width: calc(min(100%, var(--update-text-width)));
  display: flex;
  align-items: center;
}
.update-title-bottom {
  margin-top: 35px;
  margin-right: 12px;
}
.update-description {
  margin-top: 25px;
  font-weight: 400;
  font-size: var(--text-font-size);
  color: var(--text-color);
  line-height: 175%;
  width: calc(min(100%, var(--update-text-width)));
  min-width: calc(min(100%, var(--update-text-width)));
}
.update-subtitle {
  margin-top: 25px;
  font-weight: 600;
  font-size: var(--subtitle-font-size);
  color: var(--text-color);
  width: calc(min(100%, var(--update-text-width)));
  min-width: calc(min(100%, var(--update-text-width)));
  text-align: right;
}

.end-content-wrapper {
  margin-top: var(--content-gap);
  height: fit-content;
  min-height: fit-content;
  width: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.end-content-title {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: var(--subtitle-font-size);
  color: var(--text-color);
  text-align: center;
}

.all-footer {
  background-color: none;
  width: 100vw;
  min-width: 100vw;
  height: fit-content;
  min-height: fit-content;
  display: flex;
  flex-direction: column;
  margin-top: var(--content-gap);
}

.all-footer-top-wrapper {
  height: fit-content;
  min-height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--content-gap) var(--content-horizontal-padding);
  padding-top: calc(var(--content-gap) / 2);
}

.all-footer-title {
  font-weight: 600;
  font-size: 56px;
  color: var(--text-color);
  margin-bottom: 10px;
}
.all-footer-subtitle {
  font-weight: 400;
  font-size: var(--text-font-size);
  color: var(--text-color);
  line-height: 125%;
}

.all-footer-input-wrapper {
  display: flex;
  flex-direction: column;
  height: fit-content;
  min-height: fit-content;
  width: var(--footer-input-width);
  min-width: var(--footer-input-width);
  margin-top: var(--box-padding);
  border-radius: 3px;
  overflow: hidden;
}
.all-footer-input {
  flex: 1;
  height: var(--footer-input-height);
  min-height: var(--footer-input-height);
  padding: 2px 15px;
  font-weight: 500;
  color: var(--text-color);
  font-size: 14px;
  outline: none;
  border: 0.5px solid rgba(117, 117, 117, 1);
  border-radius: 8px;
  background-color: rgba(248, 248, 248, 1);
  margin-bottom: var(--footer-input-gap);
}
.all-footer-input:focus {
  padding-bottom: 0;
  border-bottom: 2px solid var(--button-background-color);
}
.all-footer-input-button {
  height: 35px;
  min-height: 35px;
  width: var(--footer-input-button-width);
  min-width: var(--footer-input-button-width);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--footer-button-background-color);
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 40px;
}
.all-footer-input-button-text {
  font-weight: 500;
  font-size: 14px;
  color: var(--button-text-color);
  /* margin-right: 8px; */
}
.all-footer-input-button-icon {
  height: 15px;
  width: auto;
  fill: var(--text-color);
}

.all-footer-input-error-text, .all-footer-input-success-text {
  font-weight: 500;
  font-size: var(--text-font-size);
  margin-top: var(--box-padding);
}
.all-footer-input-error-text {
  color: rgba(255, 0, 0, 1);
}
.all-footer-input-success-text {
  color: rgba(0, 255, 0, 1);
}

.all-footer-reach-us-text {
  margin-top: var(--box-padding);
  font-weight: 400;
  font-size: var(--text-font-size);
  color: var(--text-color);
}
.all-footer-reach-us-link {
  color: var(--button-background-color);
  margin: 0 5px;
  text-decoration: none;
  fill: var(--text-color);
}
.all-footer-reach-us-link:hover {
  text-decoration: underline;
}

.all-footer-bottom-wrapper {
  height: 35px;
  min-height: 35px;
  width: 100%;
  background-color: rgba(1, 1, 1, 1);
  padding: 0 var(--header-padding);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.all-footer-bottom-text {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-color);
}
.all-footer-bottom-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--main-color);
  margin: 0 4px;
}

@media only screen and (max-width: 1200px) {
  :root {
    --content-gap: 120px;
    --product-small-details-width: 300px;
    --security-description-wrapper-width: 400px;
  }
}
@media only screen and (max-width: 1100px) {
  :root {
    --product-header-image-height: 45px;
    --security-description-wrapper-width: 450px;
    --steps-project-details-image-width: 400px;
    --steps-login-image-width: 300px;
  }
  .product-header-image {
    left: 5px;
  }
  .product-login-image {
    transform: translateY(-90%);
    left: 10px;
  }
  .product-small-details-image {
    transform: translateY(-20%);
  }
  .product-small-details-image {
    right: 10px;
  }
}
@media only screen and (max-width: 1000px) {
  :root {
    --content-gap: 100px;

    --header-font-size: 46px;
    --title-font-size: 30px;
    --subtitle-font-size: 20px;

    --update-installation-image-width: 80%;
  }
  .steps-wrapper {
    flex-direction: column;
    justify-content: unset;
    align-items: unset;
  }
  .steps-text-wrapper {
    height: fit-content;
    min-height: fit-content;
    margin-top: 20px;
  }
  .steps-title, .graphs-title {
    margin-bottom: 20px;
  }
  .node-operations-image {
    margin-top: var(--content-gap);
  }
  .graphs-wrapper {
    flex-direction: column;
  }
  .graphs-image-wrapper {
    width: 100%;
    min-width: 100%;
    justify-content: flex-start;
    margin-top: 50px;
  }
  .graphs-two-image {
    left: var(--graphs-one-image-width);
    bottom: unset;
    top: 0;
    transform: translate(-10%, -50%);
  }
  .graphs-text-wrapper {
    padding-right: 0;
  }
  .update-installation-image {
    width: 80%;
    min-width: 80%;
  }
  .update-text-wrapper {
    width: auto;
    min-width: auto;
  }
  /* .update-wrapper {
    flex-direction: row-reverse;
  }
  .update-navbar-image {
    margin-left: 20px;
    transform: translateY(-30%);
  }
  .update-installation-image {
    right: unset;
    top: unset;
    left: 0;
    bottom: -20px;
    transform: translate(-60%, 0);
  }
  .update-text-wrapper {
    justify-content: flex-start;
  }
  .update-wrapper {
    margin-top: var(--content-gap);
  } */
}
@media only screen and (max-width: 860px) {
  :root {
    --product-header-image-height: 40px;
    --product-small-details-width: 250px;
  }
  .product-small-details-image {
    right: 0;
    transform: translate(20%, -20%);
  }
  .product-login-image {
    transform: translate(-20%, -70%);
  }
  .steps-login-image {
    transform: translate(100%, -20%);
  }
  .node-operations-image {
    margin-top: 40px;
  }
  /* .update-wrapper {
    flex-direction: row;
  }
  .update-text-wrapper {
    margin-left: auto;
    z-index: 2;
  }
  .update-description {
    text-align: right;
  }
  .update-navbar-image {
    position: absolute;
    margin-left: calc(-1 * var(--content-horizontal-padding));
    margin-top: -100px;
  }
  .update-installation-image {
    display: none;
  } */
}
@media only screen and (max-width: 800px) {
  :root {
    --content-gap: 90px;

    --header-font-size: 42px;
    --title-font-size: 25px;
    --subtitle-font-size: 18px;
    --text-font-size: 16px;
  }
  .each-project-logo {
    height: 22px;
    min-height: 22px;
  }
  .graphs-text-wrapper {
    width: 60%;
    min-width: 60%;
  }
  /* .update-text-wrapper {
    width: calc(100vw - 2 * var(--content-horizontal-padding) - var(--update-navbar-image-width) + 20px);
  } */
}
@media only screen and (max-width: 700px) {
  :root {
    --content-gap: 50px;
    --product-header-image-height: 35px;
  }
  .product-login-image {
    display: none;
  }
  /* .update-text-wrapper {
    width: calc(100vw - 2 * var(--content-horizontal-padding) - var(--update-navbar-image-width));
  }
  .update-title-top {
    margin-left: -30px;
    margin-top: -20px;
  } */
}
@media only screen and (max-width: 670px) {
  /* .update-title-top {
    margin-left: -70px;
    margin-top: -35px;
  } */
}
@media only screen and (max-width: 640px) {
  /* .update-title-top {
    margin-left: -100px;
    margin-top: -35px;
  } */
}
@media only screen and (max-width: 600px) {
  :root {
    --content-gap: 50px;
    --header-font-size: 33px;
    --title-font-size: 24px;
    --subtitle-font-size: 17px;
    --text-font-size: 15px;
    --header-download-button-height: 35px;
    --header-download-button-width: 100px;
    --product-small-details-width: 200px;
    --product-header-image-height: 30px;
    --steps-login-image-width: 220px;
    --security-description-wrapper-width: 310px;
    --graphs-one-image-width: 400px;
    --graphs-two-image-width: 190px;
    --footer-input-height: 30px;
    --footer-input-width: 400px;
    --footer-input-button-width: 100px;

  }
  .title {
    font-size: 46px;
  }
  .subtitle {
    font-size: 17px;
  }
  .product-small-details-image {
    display: none;
  }
  .each-project-logo {
    height: 18px;
    min-height: 18px;
  }
  .security-title {
    margin-bottom: 0;
  }
  .steps-image-wrapper {
    width: 100%;
    min-width: 100%;
  }
  .steps-project-details-image {
    width: 60vw;
    min-width: 60vw;
  }
  .steps-login-image {
    transform: translate(0, 0);
    bottom: unset;
    left: unset;
    top: -10px;
    right: 0;
    margin-right: 0;
  }
  .steps-description {
    margin-bottom: 0px;
  }
  .graphs-two-image {
    transform: translate(-10%, -30%);
  }
  .graphs-text-wrapper {
    width: 80%;
    min-width: 80%;
  }
  .update-installation-image {
    width: 100%;
    min-width: 100%;
  }
  /* .update-navbar-image {
    transform: translate(-50%, -25%);
  }
  .update-text-wrapper {
    width: calc(100vw - 2 * var(--content-horizontal-padding) - var(--update-navbar-image-width) / 2 - 20px);
  }
  .update-title {
    justify-content: flex-end;
  } */
  .all-footer-title {
    font-size: 48px;
  }
  .all-footer-input-button-text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 500px) {
  :root {
    --content-gap: 70px;
    --header-font-size: 31px;
    --title-font-size: 22px;
    --subtitle-font-size: 16px;
    --text-font-size: 15px;
    --header-download-button-height: 35px;
    --header-download-button-width: 100px;
    --product-small-details-width: 150px;
    --product-header-image-height: 30px;
    --steps-login-image-width: 190px;
    --security-description-wrapper-width: 310px;
    --graphs-one-image-width: 350px;
    --graphs-two-image-width: 150px;
    --footer-input-height: 30px;
    --footer-input-width: 300px;
    --footer-input-button-width: 90px;
  }
  .all-header-logo {
    display: none;
  }
  .all-header-logo-responsive {
    display: unset;
  }
  .title-wrapper {
    height: 350px;
    min-height: 350px;
  }
  .title {
    font-size: 36px;
  }
  .subtitle {
    font-size: 16px;
    line-height: 175%;
  }
  .product-header-image {
    left: -30px;
  }
  .product-projects-image {
    width: 110vw;
    min-width: 110vw;
    left: 0;
    transform: translate(0, 0);
  }
  .security-wrapper {
    margin-top: calc(min(110vw, var(--product-projects-image-width)) / 2 + var(--content-gap));
  }
  .node-operations-image {
    width: 150vw;
    min-width: 150vw;
  }
  /* .update-title-top {
    margin-left: -150px;
    margin-top: -35px;
  } */
  .all-footer-title {
    font-size: 40px;
  }
  .all-footer-input-button-text {
    margin: 0;
  }
  .all-footer-input-button-icon {
    display: none;
  }
  .all-footer-bottom-wrapper {
    justify-content: center;
  }
  .all-footer-bottom-text {
    font-size: 12px;
  }
}
@media only screen and (max-width: 400px) {
  :root {
    --content-gap: 60px;
    --header-font-size: 29px;
    --title-font-size: 20px;
    --subtitle-font-size: 15px;
    --text-font-size: 14px;
    --header-download-button-height: 35px;
    --header-download-button-width: 100px;
    --product-small-details-width: 140px;
    --product-header-image-height: 30px;
    --steps-login-image-width: 190px;
    --security-description-wrapper-width: 310px;
    --graphs-one-image-width: 350px;
    --graphs-two-image-width: 150px;
  }
  .title-wrapper {
    height: 350px;
    min-height: 350px;
  }
  .title {
    font-size: 32px;
  }
  .subtitle {
    font-size: 14px;
    line-height: 175%;
  }
  .product-header-image {
    left: -30px;
  }
  .product-projects-image {
    width: 110vw;
    min-width: 110vw;
    left: 0;
    transform: translate(0, 0);
  }
  .security-wrapper {
    margin-top: calc(min(110vw, var(--product-projects-image-width)) / 2 + var(--content-gap));
  }
  .node-operations-image {
    width: 150vw;
    min-width: 150vw;
  }
  .graphs-text-wrapper {
    width: 90%;
  }
  .graphs-two-image {
    transform: translate(-40%, -30%);
  }
  /* .update-navbar-image {
    display: none;
  }
  .update-text-wrapper {
    width: 100%;
    min-width: 100%;
  }
  .update-title-top {
    margin-left: -150px;
    margin-top: -35px;
  } */
}